From: Camila Ayres Date: Thu, 20 Feb 2025 17:32:53 +0000 (+0100) Subject: Remove help url from developer string. X-Git-Tag: archive/raspbian/3.16.7-1_deb13u1+rpi1~1^2~12^2~2^2~29^2~2 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/success/%22http:/www.example.com/cgi/success?a=commitdiff_plain;h=6356b8356d04414a141bedf0023cb0cdedd659d4;p=nextcloud-desktop.git Remove help url from developer string. Signed-off-by: Camila Ayres --- diff --git a/src/libsync/theme.cpp b/src/libsync/theme.cpp index 16e148167..258e89a3c 100644 --- a/src/libsync/theme.cpp +++ b/src/libsync/theme.cpp @@ -416,7 +416,7 @@ QString Theme::developerStringInfo() const const auto osStringList = Utility::platformName().split(QLatin1Char(' ')); const auto osName = osStringList.at(0); - const auto devString = QString(tr("

%1 Desktop Client Version %2 (%3). For more information please click here.

", "%1 is application name. %2 is the human version string. %3 is the operating system name. %4 is the help URL")) + const auto devString = QString(tr("%1 Desktop Client Version %2 (%3)", "%1 is application name. %2 is the human version string. %3 is the operating system name.")) .arg(APPLICATION_NAME, QString::fromLatin1(MIRALL_HUMAN_VERSION_STRING), osName, helpUrl()); return devString;